34481e04e525fcf4d40a72e404219b1023444417,plugins/org.eclipse.xtend.core/src/org/eclipse/xtend/core/jvmmodel/XtendJvmModelInferrer.java,XtendJvmModelInferrer,transform,#XtendField#JvmGenericType#,401

Before Change


	protected void transform(XtendField source, JvmGenericType container) {
		if (source.isExtension() || source.getName() != null) {
			JvmField field = typesFactory.createJvmField();
			field.setSimpleName(computeFieldName(source, container));
			container.getMembers().add(field);
			associator.associatePrimary(source, field);
			field.setVisibility(source.getVisibility());

After Change


	protected void transform(XtendField source, JvmGenericType container) {
		if (source.isExtension() || source.getName() != null) {
			JvmField field = typesFactory.createJvmField();
			final String computeFieldName = computeFieldName(source, container);
			field.setSimpleName(computeFieldName);
			container.getMembers().add(field);
			associator.associatePrimary(source, field);